Stored Procedures [dbo].[dt_verstamp007]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecutepublic
SQL Script
/*
**    This procedure returns the version number of the stored
**    procedures used by the the Microsoft Visual Database Tools.
**    Version is 7.0.05.
*/

create procedure dbo.dt_verstamp007
as
    select 7005
GO
GRANT EXECUTE ON  [dbo].[dt_verstamp007] TO [public]
GO
Uses